This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~James Asaremaroni 23.Jan.04 07:38 PM a Web browser Applications Development6.0.2 CF1All Platforms
I am try code @Mailsend on the web. I have a agent with the following lotus script. it does not give any errors but at the same time i do not receive any emails.Is there a standard script for the web. I tried calling from the Web QuerySave event but it still does not work.
Sub Initialize
Dim db As NotesDatabase
Dim doc As NotesDocument
Set doc = session.DocumentContext
Dim recipients( 1 To 2 ) As String
recipients( 1 ) = "pssrinivasan@west.com"
recipients( 2 ) = "rmpetersen@west.com"
Call doc.Send( True, recipients )
End Sub